home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / src / lib / asm / common_data.s next >
Encoding:
Text File  |  1998-10-04  |  999 b   |  34 lines

  1. ;
  2. ; Data references common to several modules.
  3. ; Copyright (C) 1998 David Benn
  4. ; This program is free software; you can redistribute it and/or
  5. ; modify it under the terms of the GNU General Public License
  6. ; as published by the Free Software Foundation; either version 2
  7. ; of the License, or (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17. ;
  18. ; Author: David J Benn
  19. ;   Date: 19th,25th March 1994
  20. ;
  21.  
  22.     xdef    _shortfmt
  23.     xdef    _longfmt
  24.     xdef    _radconv
  25.  
  26.     SECTION common_data,DATA
  27.  
  28. _shortfmt:        dc.b     '%d',0
  29. _longfmt:        dc.b     '%ld',0
  30. _radconv:        dc.l    $e52ee146
  31.  
  32.     END
  33.